d/p/Makefile-tests.am-make-check-uses-the-built-binaries.patch: drop, applied upstream
authorSimon McVittie <smcv@debian.org>
Tue, 6 Sep 2016 08:34:37 +0000 (09:34 +0100)
committerSimon McVittie <smcv@debian.org>
Tue, 6 Sep 2016 08:34:37 +0000 (09:34 +0100)
debian/changelog
debian/patches/Makefile-tests.am-make-check-uses-the-built-binaries.patch [deleted file]
debian/patches/series

index 5de85ab079bbf0cb9a7772af7bb7b43878cd3089..f543e927ceb362bef094b1cb2ac2bd9362da232d 100644 (file)
@@ -6,6 +6,8 @@ ostree (2016.9-1) UNRELEASED; urgency=medium
     - update ostree-boot packaging: the utilities in /usr/sbin moved to
       /usr/lib/ostree
     - drop libgsystem build-dependency
+    - d/p/Makefile-tests.am-make-check-uses-the-built-binaries.patch:
+      drop, applied upstream
   * Explicitly build-depend on xsltproc, which is directly used
 
  -- Simon McVittie <smcv@debian.org>  Fri, 12 Aug 2016 10:30:01 +0100
diff --git a/debian/patches/Makefile-tests.am-make-check-uses-the-built-binaries.patch b/debian/patches/Makefile-tests.am-make-check-uses-the-built-binaries.patch
deleted file mode 100644 (file)
index e3fdf59..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-From: Giuseppe Scrivano <gscrivan@redhat.com>
-Date: Thu, 14 Jul 2016 13:42:32 +0200
-Subject: Makefile-tests.am: make check uses the built binaries
-
-The tests suite was failing locally as it was using the installed
-version of rofiles-fuse, instead of the built one.  Create the needed
-symlinks in tests/ as we are already doing for the "ostree" binary.
-
-ostree-prepare-root and ostree-remount added for completeness.
-
-Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-
-Bug: #395
-Reviewed-by: cgwalters
-Origin: upstream, commit:307f4b2957d0416604b1b0f9e74d72fd695c7137
----
- Makefile-tests.am | 18 +++++++++++++-----
- 1 file changed, 13 insertions(+), 5 deletions(-)
-
-diff --git a/Makefile-tests.am b/Makefile-tests.am
-index e274c5e..0b6b64e 100644
---- a/Makefile-tests.am
-+++ b/Makefile-tests.am
-@@ -33,7 +33,8 @@ TESTS_ENVIRONMENT += OT_TESTS_DEBUG=1 \
-       PATH=$$(cd $(top_builddir)/tests && pwd):$${PATH} \
-       $(NULL)
--uninstalled_test_data = tests/ostree-symlink-stamp
-+uninstalled_test_data = tests/ostree-symlink-stamp tests/ostree-prepare-root-symlink-stamp \
-+                      tests/ostree-remount-symlink-stamp tests/rofiles-fuse-symlink-stamp
- dist_uninstalled_test_scripts = tests/test-symbols.sh
-@@ -238,12 +239,19 @@ EXTRA_DIST += \
- tests/libreaddir-rand.so: Makefile
-       $(AM_V_GEN) ln -fns ../.libs/libreaddir-rand.so tests
- ALL_LOCAL_RULES += tests/libreaddir-rand.so
--CLEANFILES += tests/libreaddir-rand.so tests/ostree-symlink-stamp tests/ostree
-+CLEANFILES += tests/libreaddir-rand.so tests/ostree-symlink-stamp \
-+              tests/ostree-prepare-root-symlink-stamp tests/ostree-remount-symlink-stamp \
-+              tests/rofiles-fuse-symlink-stamp tests/ostree
--tests/ostree-symlink-stamp: Makefile
-+tests/%-symlink-stamp: Makefile
-       @set -e; \
--      real_bin=`cd $(top_builddir) && ./libtool --mode=execute echo ostree`; \
--      ln -sf "$${real_bin}" tests/ostree; \
-+      lt_bin=`cd $(top_builddir) && ./libtool --mode=execute echo $*`; \
-+      if test "$${lt_bin}" = "$*"; then \
-+              real_bin=$(abs_top_builddir)/$*; \
-+      else \
-+              real_bin="$${lt_bin}"; \
-+      fi; \
-+      ln -sf "$${real_bin}" tests/$*; \
-       touch $@
- # Unfortunately the glib test data APIs don't actually handle
index 0642114eb38b399e9a6dab55695256327fecbf77..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1 +0,0 @@
-Makefile-tests.am-make-check-uses-the-built-binaries.patch